'DeclarationPublic Overloads Shared Sub LogWarning( _ ByVal exception As Exception, _ ByVal message As String, _ ByVal ParamArray args() As Object _ )
'UsageDim exception As Exception Dim message As String Dim args() As Object Utils.LogWarning(exception, message, args)
public: static void LogWarning( Exception^ exception, String^ message, ... array<Object^>^ args )
Parameters
- exception
 - The exception to log.
 - message
 - Format string of the log message in message template format. Example: 
"User {User} logged in from {Address}" - args
 - An object array that contains zero or more objects to format.